home *** CD-ROM | disk | FTP | other *** search
- ┌──────────────┐
- │ ANSWER COM │
- └──────────────┘
-
- This one has my vote for the handiest batch file
- utility of all time. ANSWER.COM will allow you to prompt
- for a string of text and then act on that string. For
- example:
-
- echo off
- cls
- answer What is the name of the file you wish to copy?
- set file=%answer%
- answer Where do you wish to copy it?
- copy %file% %answer%
-
- In this example %answer% is the dos envrionment
- variable that is set by ANSWER.COM. This utility is
- awesome!
-
-
-
-
-